home *** CD-ROM | disk | FTP | other *** search
-
-
- function Ricerca() {
-
- var stringa = document.modulo.cerca.value.toUpperCase();
-
- if ((stringa == "") || (stringa == "undefined")) {
- risultati.innerHTML = "Inserire un termine per eseguire una ricerca";
- return false;
- }
- id_database.recordset.moveFirst();
-
- var estrai = "";
-
- while (!id_database.recordset.EOF) {
- var title = id_database.recordset("Titolo").value.toUpperCase();
- if (title.indexOf(stringa) >= 0) {
- estrai += "<div><b><font face=arial color=#094673 size=2>" + id_database.recordset("Titolo")
- + "</b></font>"
- + "</a><br><b>Argomento:</b>" + id_database.recordset("Argomento")
- + "</a><br><b>Anno:</b>" + id_database.recordset("Anno")
- + "</a><br><b>Mese:</b>" + id_database.recordset("Mese")
- + "</a><br><b>Pagina:</b>" + id_database.recordset("Pagina")
- + "</div><br>";
- }
- id_database.recordset.moveNext();
- }
-
- if ((estrai == "") || (estrai == "undefined")) {
- risultati.innerHTML = "Nessun risultato per la ricerca";
- return false;
- }
- else {
- risultati.innerHTML = estrai;
- }
- }
-
-